Remove invite for a team
POST /api/v1/Teams/invite/remove
Description
This endpoint is used to remove an invitation for a team.
Tags: Teams
URL:
/api/v{version}/Teams/invite/remove
ApiKey:
No API key required
Content-Type:
application/json, text/json, application/*+json
Path Parameters:
version: string, required
Accept-Language: header, optional, change the default response message language from English(en) to French(fr) or English(en)
Request Body:
RemoveRequest
Response:
Success, returns a string response.
Error Codes:
400: Bad Request
404: Not Found
/api/v1/Teams/invite/remove
Headers
| Content-Type | Value |
|---|---|
| Accept-Language |
Headers
| Content-Type | Value |
|---|---|
| Content-Type | application/json |
Headers
| Content-Type | Value |
|---|---|
| Accept | text/plain |
Body (raw)
{
"id": `<uuid>`
}
Response: 200
{
"succeeded": `<boolean>`,
"message": `<string>`,
"errors": [
`<string>`,
`<string>`
],
"data": `<string>`
}
LANGUAGE
CURL REQUEST
curl --request POST \
--url /api/v1/Teams/invite/remove \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!